home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19980424-19980901 / 000426_news@newsmaster….columbia.edu _Tue Sep 1 10:27:34 1998.msg < prev   
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id KAA16188
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Tue, 1 Sep 1998 10:27:34 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id KAA02047
  7.     for kermit.misc@watsun; Tue, 1 Sep 1998 10:27:33 -0400 (EDT)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.os.vms,comp.protocols.kermit.misc
  11. Subject: Re: How I implemented an application using C-Kermit for VMS
  12. Date: 1 Sep 1998 14:27:33 GMT
  13. Organization: Columbia University
  14. Lines: 35
  15. Message-ID: <6sh08l$1dv$1@apakabar.cc.columbia.edu>
  16. References: <6s1kq5$65p$1@client3.news.psi.net> <6sfhis$4hi$1@jetsam.uits.indiana.edu>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.os.vms:185105 comp.protocols.kermit.misc:9156
  19.  
  20. In article <6sfhis$4hi$1@jetsam.uits.indiana.edu>,
  21. jeff l sue <jsue@cs.indiana.edu> wrote:
  22. : In article <6s1kq5$65p$1@client3.news.psi.net>,
  23. : Bob Kennedy <bkennedy@peco-energy.com> wrote:
  24. : >
  25. : > [...]
  26. : >
  27. : >   C-Kermit opened up the door for us to perform this proactive search
  28. : >for problems and a means by which to contact us in the event of an
  29. : >emergency with a well-defined "English" message.  This is most effective
  30. : >around 03:30 in the morning when the system calls to tell us that DAS is
  31. : >down, or any other type of problem.  If we were still using that "Digital
  32. : >pager", we would need to find, then lookup the code describing the
  33. : >problem.  This, for most of us, is difficult t three in the morning.
  34. : I totally agree that C-Kermit is a good product.
  35. : But, what do you do if someone doesn't receive a page for an error message?
  36. : This happens for lots of reasons in my world.
  37. That's the good thing about alpha paging.  TAP is a protocol that lets the
  38. page sender know whether the page was delivered successfully -- at least to
  39. the paging service.  Of course it is the paging service's responsibility
  40. to deliver it to the pager.  And of course it is also the responsibility of
  41. the person carrying the page to read the page promptly and respond to it,
  42. but that's somewhat beyond software control.
  43.  
  44. When TAP says the page was not delivered, the Kermit script can be coded to
  45. retry until it is, requeue for later transmission, send the page to an
  46. alternative destination, or any other desired recovery procedure.
  47.  
  48. This is in sharp contrast to beepers and numeric pagers, for which no
  49. feedback is available, which makes it impossible for Kermit (or any other
  50. software) to know whether a page was sent successfully.
  51.  
  52. - Frank